home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
EDUCATE
/
CPPTUT.ARJ
/
PERSON.HPP
< prev
next >
Wrap
Text File
|
1990-07-20
|
279b
|
14 lines
// Chapter 11 - Program 1
#ifndef PERSONHPP
#define PERSONHPP
class person {
protected: // Make these variables available to the subclasses
char name[25];
int salary;
public:
virtual void display(void);
};
#endif